home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / LIBRARY / CMPLTPAS / MAIN.PAS < prev    next >
Pascal/Delphi Source File  |  1988-07-01  |  952b  |  22 lines

  1. {--------------------------------------------------------------}
  2. {                           Main                               }
  3. {                                                              }
  4. {      Exit procedure chaining demonstration program           }
  5. {                                                              }
  6. {                             by Jeff Duntemann                }
  7. {                             Turbo Pascal V4.0                }
  8. {                             Last update 7/1/88               }
  9. {                                                              }
  10. {     From: COMPLETE TURBO PASCAL 5.0  by Jeff Duntemann       }
  11. {    Scott, Foresman & Co., Inc. 1988   ISBN 0-673-38355-5     }
  12. {--------------------------------------------------------------}
  13.  
  14. PROGRAM Main;
  15.  
  16. USES Unit1,Unit2,Unit3;
  17.  
  18. BEGIN
  19.   Writeln('Main program execution begins here.');
  20.   Writeln('Main program execution ends here.');
  21. END.
  22.